ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Data.ExpressionInfo Assembly / GrapeCity.Enterprise.Data.Expressions.Tools Namespace / EnumerableExtensions Class / ZipEx Method / ZipEx<T1,T2,TR>(IEnumerable<T1>,IEnumerable<T2>,Func<T1,T2,TR>) Method
The type of the elements of the first input sequence
The type of the elements of the second input sequence
The type of the elements of the result sequence
The first sequence to merge
The second sequence to merge
A function that specifies how to merge the elements from the two sequences

In This Topic
    ZipEx<T1,T2,TR>(IEnumerable<T1>,IEnumerable<T2>,Func<T1,T2,TR>) Method
    In This Topic
    Applies a specified function to the corresponding elements of two sequences, producing a sequence of the results
    Syntax
    'Declaration
     
    Public Overloads Shared Function ZipEx
        (Of T1,T2,TR)( _
       ByVal first As IEnumerable(Of T1), _
       ByVal second As IEnumerable(Of T2), _
       ByVal selector As Func(Of T1,T2,TR) _
    ) As IEnumerable(Of TR)

    Parameters

    first
    The first sequence to merge
    second
    The second sequence to merge
    selector
    A function that specifies how to merge the elements from the two sequences

    Type Parameters

    T1
    The type of the elements of the first input sequence
    T2
    The type of the elements of the second input sequence
    TR
    The type of the elements of the result sequence

    Return Value

    An IEnumerable that contains merged elements of two input sequences
    See Also